home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / print / pr.zip / PR.WS2 (.txt) < prev    next >
WordStar Document  |  1986-12-05  |  3KB  |  52 lines

  1.  
  2. NAME
  3.     pr - print file
  4.  
  5. SYNOPSIS
  6.     pr [ option ] + [ file ] +
  7.  
  8. DESCRIPTION
  9. Pr produces a printed listing of one or more files.  The output is separated into pages headed by a date, the name of the file or a specified header, and the page number.  If there are no file arguments, pr prints its standard input.
  10.  
  11. Options apply to all following files but may be reset between files:
  12.  
  13. /n    Produce n-column output.
  14.  
  15. /pn    Begin printing with page n.
  16.  
  17. /h    Take the next argument as a page header.
  18.  
  19. /wn    Take the width of the page to be n characters instead of the default 80.
  20.  
  21. /f    Use formfeeds instead of newlines to separate pages.  A formfeed is assumed to use up two blank lines at the top of a page.  (Thus this option does not affect the effective page length.)
  22.  
  23. /ln    Take the length of the page to be n lines instead of the default 66.
  24.  
  25. /t    Do not print the 5-line header or the 5-line trailer normally supplied for each page.
  26.  
  27. /sc    Separate columns by the single character c instead of by the appropriate amount of white space.  A missing c is taken to be a tab.
  28.  
  29. /m    Print all files simultaneously, each in one column.
  30.  
  31. /Tn    Take the width of a tab character to be n instead of the default 8.
  32.  
  33. Note the following differences between UNIX pr(1) and PC-DOS pr:
  34.  
  35. +    The switch character may be changed from `/' to `-' by the documented methods.
  36.  
  37. +    The option structure follows the conventions established by AT&T for UNIX command options, enforced by the use of the getopt() function.  Options that require arguments (such as /l) may have white space between the option and the argument or not.  Several options may be concatenated behind a single `/' with no white space separating them.
  38.  
  39. +    More than 9 columns are not supported, or 15 files printed simultaneously.
  40.  
  41. +    The UNIX ¼+n| option is replaced by ¼/pn|.
  42.  
  43. EXAMPLE
  44.  
  45.         pr /t /m filea fileb filec
  46.  
  47.     will print out the three files simultaneously, each in one column, without headers.
  48.  
  49. AUTHOR
  50.  
  51. Mojo Jones, mojo@micropro.UUCP
  52.